home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
gds
/
source
/
gds204.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Windows-1252 (detected)
Wrap
C/C++ Source or Header
|
1993-07-08
|
349 b
|
20 lines
/*
*
* GDS204 : ポイント
*
*/
#include <stdio.h>
#include <dos.h>
unsigned char *GDS_append(unsigned char *wp,unsigned int size);
void GDS_point(unsigned char *wp,signed int x1,signed int y1) {
wp=GDS_append(wp,6);
*(unsigned int *)(wp+0)=0x4000+3*32+4;
*(signed int *)(wp+2)=x1;
*(signed int *)(wp+4)=y1;
}